home *** CD-ROM | disk | FTP | other *** search
- #ifndef __GESTALTSTUFF__
- #define __GESTALTSTUFF__
-
- #ifndef __GESTALT__
- #include <Gestalt.h>
- #endif
-
- extern Boolean gHasProcessMgr;
-
- Boolean HasProcessMgr();
- Boolean HasGestaltAttribute(OSType attr, short itsBit);
-
-
- inline Boolean HasProcessMgr()
- {
- if (!gHasProcessMgr)
- gHasProcessMgr = HasGestaltAttribute(gestaltOSAttr, gestaltLaunchControl);
- return gHasProcessMgr;
- }
-
-
- #endif